CF-Random PyPi Package#1
Open
prameshsharma25 wants to merge 15 commits intomainfrom
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Background
CF-Random is a tool for predicting alternative conformations and fold-switching proteins using AlphaFold. Previously, the project was structured as a collection of Python scripts that required manual setup and path management. This PR converts CF-Random into a properly structured Python package that can be installed via pip, making it more accessible to the scientific community and easier to integrate into workflows.
Why
pip install .command instead of manual setuppip install cf-randominstallationimport cf_randompyproject.tomlandsetup.pycf-randomcommand-line tool with proper argument parsingWhat Was Changed
New Files Created:
pyproject.toml- Modern Python package configuration (PEP 517/518 compliant)setup.py- Setup script for backward compatibilityMANIFEST.in- Package manifest for including non-Python filescf_random/package directory with:__init__.py- Package initialization and version infomain.py- Wrapper module for the original codecli.py- Command-line interface entry pointINSTALL.md- Installation guide for usersDEVELOP.md- Development and contribution guidelines.gitignore- Python and project-specific ignore patternsValidation
CLI Testing